import React from 'react'; interface StatCardProps { value: string; label: string; className?: string; } export function StatCard({ value, label, className = '' }: StatCardProps) { return (

{value}

{label}

); }